home *** CD-ROM | disk | FTP | other *** search
/ Private Obsession 3: Sophia / Private Obsession 3: Sophia.iso / files / one.dxr / 00022.ls < prev    next >
Encoding:
Text File  |  1995-04-08  |  550 b   |  24 lines

  1. on startMovie
  2.   set the soundLevel to 7
  3.   updateStage()
  4. end
  5.  
  6. on setvolume
  7.   global where, currentvol
  8.   set where to (the mouseH - the left of sprite 6) * 1.0
  9.   set currentvol to where / the width of sprite 6 * 1.0 * 255
  10.   set the volume of sound 1 to integer(currentvol)
  11.   set the volume of sound 2 to integer(currentvol)
  12.   put the mouseH
  13.   set the locH of sprite 17 to the mouseH + the width of cast 15
  14.   updateStage()
  15.   put the locH of sprite 17
  16. end
  17.  
  18. on wait howlong
  19.   startTimer()
  20.   repeat while the timer < howlong
  21.     nothing()
  22.   end repeat
  23. end
  24.